*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

body{
    background-color: #1a2032;
    
}

.navbar,.sidebar,.main-content,.footer{
    display: flex;
    justify-content: center;
    
    
    border:0.2vw solid black;
}
.sidebar,.footer{
    align-items: center;
    text-align: center;
}

.container{
    
    display: grid;
    grid-template-columns: 17vw 83vw;
    grid-template-rows:12vh 90vh 9vh;
    grid-auto-rows:30vh;
    grid-template-areas:
    "navbar navbar"
    "sidebar main-content"
    "footer footer"
    ;
}
/*Navbar Section*/

.navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin:auto;
    list-style-type:none;
    background-color: rgb(157, 115, 150);
    grid-area:navbar;
    height:15vh;
    width:100vw;
    
}

/*Nav (Left Side)*/

.logo-container{
    display: flex;
    flex-direction: row;
    gap:1vh;
}

.logo{
    
    margin-left:1.3vh;
    margin-bottom: 1.5vh;
}
.logo-text{
    font-size:2.3vw;
    font-weight:bold;
    
    margin-top:1.2vh;
}



/*Nav (Right Side)*/

.logo-2-container{
    display: flex;
    flex-direction: row;
    gap:2vw;
    width:20vw;
    float:right;
    
}


.nav-img{
    height:9vh;
    width:4vw;
}

.vibe-hq-btn{

    width:10vw;
    height:8vh;
   background-color: #535b73;
    font-weight:bold;
    color:rgb(0, 0, 0);
    border-radius:1vw;
    justify-content: center;
    font-size:1vw;
        border:.25vw solid black;
        margin-top:.5vh;
    cursor:pointer;
}

.vibe-hq-btn:hover{
 background-color: #7d8292;

}
#about-btn{

   
      
}

#focus-room-btn{
   
}
#profile-img{
    margin-bottom:2.2vh;
    width:4.3vw;
}

/*Navbar Section End*/



/*Body Section*/




/*Sidebar*/
.sidebar{
    background-color: rgb(203, 158, 203);
    grid-area:sidebar;
    display: flex;
    flex-direction: column;
    
    justify-content: space-evenly;
}

.sidebar-img{
    height:7vh;
    width:5vw;
    
    align-items:center;
    text-align:center;
    
}

.dashboard-img{
    height: 5.3vh;
    width:5vw;
}

.calendar-img{
    height:6vh;
    width:6vw;
    margin-left:-.8vw;
}
.tasks-img{
    margin-left:-1vw;
}
.rooms-img{
    height:6vh;
    width:6vw;
}

.settings-img{
    
    height:6.5vh;
    width:6.5vw;
    float:left;
    margin-right:2vw;
}
.sidebar-link{
    display: flex;
    flex-direction: row;
    
    text-decoration-line: none;
    color:black;
    font-size:2.2vw;
    font-weight:bold;
    background-color: rgb(98, 156, 137);
    padding:0.4vw;
    border-radius:.6vw;
    border:0.2vw solid black;
    justify-content: center;
    align-items: center;
    height:10vh;
    width:15vw;
    
    
    
}



#library-icon{
    margin-left:-.2vw;
}

.dashboard-link{
    gap:.5vw;
}

.calendar-link{
    gap:.4vw;
}
.tasks-link{
    font-size:2vw;
    display: flex;
    justify-content: space-around;;
}

#library-link{
    font-size:1.9vw;
    display: flex;
    justify-content: space-evenly;
    gap:0.4vw;
    white-space: nowrap;
}


.dashboard-text{
    margin-left:0.1vw;
}
.tasks-text{
    margin-left:-1vw;
}

#library-text{
    margin-right:1vw;
}

.rooms-link{
    font-size:1.8vw;
    white-space:nowrap;
    
}

#settings-link{
    font-size:2vw;
    white-space:nowrap;
    display: flex;
    justify-content:left;
    gap:1.3vw;
    
}

#settings-text{
    display: flex;
    float:left;
    justify-content: center;
    margin-right:1.2vw;
}


/*Sidebar Ends*/

/*Main Content Section*/

.main-content{
    background-color: #1a2032;
    grid-area:main-content;
    display: flex;
    flex-direction: column;
    
    align-items:center; /*horizontally centering*/
    
}

.main-content-header{
    margin-top:1vh;
    
    font-size:3vw;
    
    
    text-decoration-line: underline;
    color:white;
    
}

.main-content-subheader{
     color:white;
}

.calendar-container{
    display:flex;
    flex-direction:row;
    height:90%;
    width:80%;
    gap:3vh;
    margin-top:2vh;
    margin-bottom:2vh;
   
    
}

.events-list-container{
    display: flex;
    flex-direction:column;
    align-items: center;
    text-align: center;
    border:0.15vw solid white;
     border-radius:.4vw;
     background-color:rgb(68, 68, 96,0.8);
   
}

.events-list-header{
    font-size:2vw;
    color:rgb(254, 254, 254);
text-decoration-line: underline;
    font-weight:bold;
    display: flex;
    margin-bottom:2vh;
    margin-top:1.6vh;
}
.events-list{

    border-radius:2vw;;
    height:70%;
 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:1.5vh;
    width:20vw;
    list-style-type:none;
}

.events-item{
height:6vh;
width:90%;
font-size:1.4vw;
color:orange;
background-color: #1a2032;
border-radius:0.2vw;
width:90%;
display: flex;
justify-content: center;
text-align: center;
align-items: center;
border:0.2vw solid black;
    
}

.add-event-btn{
    margin-top:-11vh;
  
    width:10vw;
    height:5vh;
    background-color: #78809c;
    font-weight:bold;
    color:rgb(0, 0, 0);
    border-radius:.1vw;
    justify-content: center;
    font-size:1vw;
    border:.1vw solid black;
    cursor:pointer;
    border-radius:.6vw;
}

/*PopUp Section */

#home{
    background-color:gray;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  
    
      
}

#skill-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom:1vw;
    gap:.8vw;
     background-color:gray;
}

.features-header{
    margin-top:1vh;
}
.skill-label{
    font-size:1.7vw;
}
.skill-dropdown{
    height:6vh;
    width:20vw;
    font-size:1vw;
    background-color: rgb(221, 200, 169);
    border:0.2vw solid black;
}


input[type="date"]::placeholder{
    margin-left:4vw;
}

option{
    font-family:Arial, Helvetica, sans-serif
}

#popup-btn-container{
    display: flex;
    flex-direction:row;
    margin-bottom:2vh;
    gap:1vw;

}

#cancel-btn{
height:2.2vw;
    width:7vw;
    font-size:1vw;
    
    border-radius:1vh;
    
    background-color:#33394c;
    color:white;
    border:0.25vw solid black;
    cursor:pointer;
    justify-content: center;
    align-items: center;
    text-align:center;
    margin:auto;
}
#continue-btn{
    height:2.2vw;
    width:7vw;
    font-size:1vw;
    
    border-radius:1vh;
    
    background-color:#33394c;
    color:white;
    border:0.25vw solid black;
    cursor:pointer;
    justify-content: center;
    align-items: center;
    text-align:center;
    margin:auto;
}

#date-container{
    display: flex;
}

.date-input{
    height:4vh;
    width:9vw;
      border:0.2vw solid black;
}

#start-date, #end-date{
  
    font-size:1vw;
    background-color: rgb(221, 200, 169);
}

#dash-icon{
   
   height:1vh;
   width:1vw;
   margin-top:1.5vh;
   margin-left:.7vw;
   margin-right:.7vw;
   
}



 #popupDialog {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding: 20px;
            background-color: #fff;
            border: 1px solid #ccc;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        #overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        /*PopUp Section End*/

.calendar{
    margin-bottom:-2vh;
    border:2vw solid pink;
    border-radius:1vw;
    height:100%;
    display:flex;
    justify-content:flex-start;
}

/*Main Content Section Ends*/

/*Footer Section*/
.footer{
    background-color: rgb(83, 46, 78);
    grid-area:footer;
    
}

.footer-text{
    font-size:1.09vw;
}

.contact-badge{
    
    
}

